上传下载完整例子SSH框架(源码 数据库)2022.1.301、源代码采用的是myeclipse10.0开发工具
2、数据库是mysql,文件在项目中
3、框架是springmvc spring mybites4、上传,下载,完整源码 5、可添加后台和管理页面
6、(源码 数据库)2022.1.30 function uploadFileToServer(){
var uploadFile = document.getElementById("upload_file_id");
var uploadTip = document.getElementById("upload_tip_id");
var uploadProgress = document.getElementById("upload_progress_id");
if(uploadFile.value==""){
uploadTip.innerText="请选择一个文件";
}else if(uploadFile.files[0].size>1024 &&uploadFile.files[0].size<(40*1024*1024)){
try{
if(window.FileReader){
var fReader = new FileReader();
var xhreq=createHttpRequest();
xhreq.onreadystatechange=function(){
if(xhreq.readyState==4){
if(xhreq.status==200){
uploadTip.innerText="文件上传成功";
setTimeout(function(){
hideUploadDialog()
},2000); //2秒后隐藏
}else{
uploadTip.innerText="文件上传失败了";
}
}
}
fReader.onload=function(e){
xhreq.open("POST","/upload/file",true);
xhreq.setRequestHeader("Content-type", "application/octet-stream"); //流类型
xhreq.setRequestHeader("Content-length", fwFile.files[0].size); //文件大小
xhreq.setRequestHeader("uploadfile_name", encodeURI(fwFile.files[0].name)); //兼容中文
xhreq.send(fReader.result);
}
fReader.onprogress = function(e){
uploadProgress.value = e.loaded*100/e.total;
}
fReader.readAsArrayBuffer(uploadFile.files[0]);
uploadProgress.style.visibility="visible";
uploadProgress.value = 0;
}else{
uploadTip.innerText="浏览器不支持上传文件";
}
}catch(e){
uploadTip.innerText="文件上传失败";
}
}else{
uploadTip.innerText="文件不符合要求";
}
}
function showUploadDialog(){
var up_dialog=document.getElementById("upload_dialog");
document.getElementById("upload_tip_id").innerText="请选择要上传的文件";
document.getElementById("upload_progress_id").style.visibility="hidden";
up_dialog.style.visibility="visible";
}
function hideUploadDialog(){
var up_dialog=document.getElementById("upload_dialog");
document.getElementById("upload_progress_id").style.visibility="hidden";
up_dialog.style.visibility="hidden";
}
</script>
<body>.
├── Servers
│ └── Tomcat v9.0 Server at localhost-config
│ ├── catalina.policy
│ ├── catalina.properties
│ ├── context.xml
│ ├── server.xml
│ ├── tomcat-users.xml
│ └── web.xml
├── javawebxx_temp3
│ ├── WebRoot
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── applicationContext.xml
│ │ │ │ ├── displaytag.properties
│ │ │ │ ├── log4j.xml
│ │ │ │ ├── mybatis-config.xml
│ │ │ │ ├── project
│ │ │ │ │ ├── controller
│ │ │ │ │ │ ├── BaseController.class
│ │ │ │ │ │ ├── IndexController.class
│ │ │ │ │ │ ├── MyController.class
│ │ │ │ │ │ ├── PublicController.class
│ │ │ │ │ │ └── admin
│ │ │ │ │ │ ├── AdminController.class
│ │ │ │ │ │ ├── AdminLoginController.class
│ │ │ │ │ │ └── StudentController.class
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── AdminDao.class
│ │ │ │ │ │ ├── MyBatiesPublic.class
│ │ │ │ │ │ ├── PublicDao.class
│ │ │ │ │ │ └── StudentDao.class
│ │ │ │ │ ├── interceptor
│ │ │ │ │ │ └── ProtalSessionHandlerInterceptor.class
│ │ │ │ │ ├── model
│ │ │ │ │ │ ├── Admin.class
│ │ │ │ │ │ ├── BaseBean.class
│ │ │ │ │ │ ├── Book2.class
│ │ │ │ │ │ ├── Student.class
│ │ │ │ │ │ └── mapping
│ │ │ │ │ │ ├── AdminMapper.xml
│ │ │ │ │ │ ├── Book2Mapper.xml
│ │ │ │ │ │ ├── PublicMapper.xml
│ │ │ │ │ │ └── StudentMapper.xml
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── BaseService.class
│ │ │ │ │ │ └── StudentService.class
│ │ │ │ │ ├── support
│ │ │ │ │ │ ├── MessageSourceHelper.class
│ │ │ │ │ │ └── UTF8StringHttpMessageConverter.class
│ │ │ │ │ └── util
│ │ │ │ │ ├── BatchSql.class
│ │ │ │ │ ├── DBHelper$1.class
│ │ │ │ │ ├── DBHelper.class
│ │ │ │ │ ├── DateConverter.class
│ │ │ │ │ ├── DateUtil.class
│ │ │ │ │ ├── FileUtil.class
│ │ │ │ │ ├── JacksonJsonUtil.class
│ │ │ │ │ ├── PageTool.class
│ │ │ │ │ ├── RandomValidateCode.class
│ │ │ │ │ ├── SpringApplicationContextHolder.class
│ │ │ │ │ ├── StringHelper.class
│ │ │ │ │ ├── Uploader.class
│ │ │ │ │ └── UrlUtil.class
│ │ │ │ └── spring-mvc-protal.xml
│ │ │ ├── jsp
│ │ │ │ └── admin
│ │ │ │ ├── index.jsp
│ │ │ │ ├── login.jsp
│ │ │ │ ├── main.jsp
│ │ │ │ ├── password.jsp
│ │ │ │ └── student
│ │ │ │ ├── edit.jsp
│ │ │ │ ├── frame.jsp
│ │ │ │ └── list.jsp
│ │ │ ├── lib
│ │ │ │ ├── activation.jar
│ │ │ │ ├── amber-oauth2-authzserver-0.22-incubating.jar
│ │ │ │ ├── amber-oauth2-common-0.22-incubating.jar
│ │ │ │ ├── aopalliance-1.0.jar
│ │ │ │ ├── aspectjrt.jar
│ │ │ │ ├── aspectjweaver.jar
│ │ │ │ ├── axis-ant.jar
│ │ │ │ ├── backport-util-concurrent-3.0.jar
│ │ │ │ ├── c3p0-0.9.1.2-jdk1.3.jar
│ │ │ │ ├── c3p0-0.9.1.2.jar
│ │ │ │ ├── c3p0-oracle-thin-extras-0.9.2.1.jar
│ │ │ │ ├── cglib-2.2.0.jar
│ │ │ │ ├── cglib-nodep-2.1_3.jar
│ │ │ │ ├── ckeditor-java-core-3.5.3-javadoc.jar
│ │ │ │ ├── ckeditor-java-core-3.5.3-sources.jar
│ │ │ │ ├── ckeditor-java-core-3.5.3.jar
│ │ │ │ ├── classmate-0.5.4.jar
│ │ │ │ ├── comm.jar
│ │ │ │ ├── commons-beanutils-1.8.3.jar
│ │ │ │ ├── commons-chain-1.2.jar
│ │ │ │ ├── commons-codec-1.6.jar
│ │ │ │ ├── commons-collections-3.2.1.jar
│ │ │ │ ├── commons-discovery-0.2.jar
│ │ │ │ ├── commons-fileupload-1.2.2.jar
│ │ │ │ ├── commons-httpclient-3.0.1.jar
│ │ │ │ ├── commons-io-1.3.2.jar
│ │ │ │ ├── commons-lang3-3.0.jar
│ │ │ │ ├── commons-logging-1.0.4.jar
│ │ │ │ ├── commons-logging-api-1.1.jar
│ │ │ │ ├── commons-net-1.4.1.jar
│ │ │ │ ├── commons-pool.jar
│ │ │ │ ├── commons.dbcp-1.2.2.osgi.jar
│ │ │ │ ├── commons.lang-2.1.0.jar
│ │ │ │ ├── commons.logging-1.1.1.jar
│ │ │ │ ├── commons.pool-1.5.3.jar
│ │ │ │ ├── displaytag-1.2.jar
│ │ │ │ ├── displaytag-export-poi-1.2.jar
│ │ │ │ ├── displaytag-portlet-1.1.jar
│ │ │ │ ├── dom4j-1.6.1.jar
│ │ │ │ ├── druid-1.0.26.jar
│ │ │ │ ├── ezmorph-1.0.3.jar
│ │ │ │ ├── fluent-hc-4.2.2.jar
│ │ │ │ ├── hibernate-validator-4.2.0.Final.jar
│ │ │ │ ├── httpclient-cache-4.2.2.jar
│ │ │ │ ├── httpcore-4.2.2.jar
│ │ │ │ ├── httpmime-4.2.2.jar
│ │ │ │ ├── jackson-all-1.6.7.jar
│ │ │ │ ├── jackson-annotations-2.1.1.jar
│ │ │ │ ├── jackson-core-2.1.2.jar
│ │ │ │ ├── jackson-databind-2.1.2.jar
│ │ │ │ ├── javassist-3.15.0-GA.jar
│ │ │ │ ├── jaxen-1.1-beta-7.jar
│ │ │ │ ├── jaxrpc.jar
│ │ │ │ ├── jboss-logging-3.1.0.CR2.jar
│ │ │ │ ├── jboss-transaction-api_1.1_spec-1.0.0.Final.jar
│ │ │ │ ├── jdom1.2.jar
│ │ │ │ ├── jl1.0.1.jar
│ │ │ │ ├── joda-time-2.10.jar
│ │ │ │ ├── json-lib-2.1-jdk15.jar
│ │ │ │ ├── jstl.jar
│ │ │ │ ├── jta-1.1.jar
│ │ │ │ ├── jtds-1.2.4.jar
│ │ │ │ ├── log4j-1.2.8.jar
│ │ │ │ ├── mybatis-3.1.1.jar
│ │ │ │ ├── mybatis-spring-1.1.1.jar
│ │ │ │ ├── mysql-connector-java-8.0.16.jar
│ │ │ │ ├── ojdbc14.jar
│ │ │ │ ├── org.springframework.aop-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.asm-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.aspects-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.beans-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.context-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.context.support-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.core-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.expression-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.jdbc-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.orm-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.test-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.transaction-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.web-3.1.1.RELEASE.jar
│ │ │ │ ├── org.springframework.web.servlet-3.1.1.RELEASE.jar
│ │ │ │ ├── poi-2.5.1.jar
│ │ │ │ ├── poi-contrib-3.0-alpha1-20050704.jar
│ │ │ │ ├── proxool-0.9.1.jar
│ │ │ │ ├── saaj.jar
│ │ │ │ ├── servlet-api.jar
│ │ │ │ ├── slf4j-api-1.6.1.jar
│ │ │ │ ├── slf4j-log4j12-1.6.1.jar
│ │ │ │ ├── sqljdbc4.jar
│ │ │ │ ├── standard.jar
│ │ │ │ ├── stax-api-1.0.1.jar
│ │ │ │ ├── struts2-core-2.2.3.jar
│ │ │ │ ├── struts2-json-plugin-2.2.3.jar
│ │ │ │ ├── thumbnailator-0.4.8.jar
│ │ │ │ ├── ueditor.jar
│ │ │ │ ├── validation-api-1.0.0.GA.jar
│ │ │ │ └── weaver-1.6.8.RELEASE.jar
│ │ │ └── web.xml
│ │ ├── error.jsp
│ │ ├── index.jsp
│ │ ├── page.jsp
│ │ ├── resource
│ │ │ ├── My97DatePicker
│ │ │ │ ├── WdatePicker.js
│ │ │ │ ├── calendar.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ ├── skin
│ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ └── img.gif
│ │ │ │ │ └── whyGreen
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ └── 开发包
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ ├── readme.txt
│ │ │ │ └── skin
│ │ │ │ ├── WdatePicker.css
│ │ │ │ ├── datePicker.gif
│ │ │ │ ├── default
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ └── whyGreen
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── datepicker.css
│ │ │ │ └── img.gif
│ │ │ ├── add1.css
│ │ │ ├── admin
│ │ │ │ ├── css
│ │ │ │ │ ├── dtree.css
│ │ │ │ │ ├── login
│ │ │ │ │ │ ├── !.gif
│ │ │ │ │ │ ├── DefaultDocs.gif
│ │ │ │ │ │ ├── Login_but.gif
│ │ │ │ │ │ ├── OK.jpg
│ │ │ │ │ │ ├── Redirects.gif
│ │ │ │ │ │ ├── Submit_bg.gif
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── X.gif
│ │ │ │ │ │ ├── ad.gif
│ │ │ │ │ │ ├── add.gif
│ │ │ │ │ │ ├── back.gif
│ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ ├── bigsize.jpg
│ │ │ │ │ │ ├── bootnbg.jpg
│ │ │ │ │ │ ├── bullet.gif
│ │ │ │ │ │ ├── buttom-copy-bg.gif
│ │ │ │ │ │ ├── buttom-left.gif
│ │ │ │ │ │ ├── buttom-right.gif
│ │ │ │ │ │ ├── buttom_bgs.gif
│ │ │ │ │ │ ├── buttom_left2.gif
│ │ │ │ │ │ ├── buttom_right2.gif
│ │ │ │ │ │ ├── card.jpg
│ │ │ │ │ │ ├── check-out_.gif
│ │ │ │ │ │ ├── close.gif
│ │ │ │ │ │ ├── content-bg-line.gif
│ │ │ │ │ │ ├── content-bg.gif
│ │ │ │ │ │ ├── database_import_.gif
│ │ │ │ │ │ ├── defind.gif
│ │ │ │ │ │ ├── del.jpg
│ │ │ │ │ │ ├── delete.gif
│ │ │ │ │ │ ├── delete_6.gif
│ │ │ │ │ │ ├── edit.gif
│ │ │ │ │ │ ├── ershou_1.gif
│ │ │ │ │ │ ├── ershou_2.gif
│ │ │ │ │ │ ├── format.gif
│ │ │ │ │ │ ├── fox.css
│ │ │ │ │ │ ├── g.gif
│ │ │ │ │ │ ├── gw.gif
│ │ │ │ │ │ ├── gw2.gif
│ │ │ │ │ │ ├── icon-demo.gif
│ │ │ │ │ │ ├── icon-login-seaver.gif
│ │ │ │ │ │ ├── icon-mail2.gif
│ │ │ │ │ │ ├── icon-phone.gif
│ │ │ │ │ │ ├── icon2_004.png
│ │ │ │ │ │ ├── icon2_089.png
│ │ │ │ │ │ ├── icon2_090.png
│ │ │ │ │ │ ├── image_(add)6.gif
│ │ │ │ │ │ ├── image_1.gif
│ │ │ │ │ │ ├── imagedelete.gif
│ │ │ │ │ │ ├── imageedit.gif
│ │ │ │ │ │ ├── ipsecurity.gif
│ │ │ │ │ │ ├── l1b3.gif
│ │ │ │ │ │ ├── l1b4.gif
│ │ │ │ │ │ ├── l1b5.gif
│ │ │ │ │ │ ├── left-bg.gif
│ │ │ │ │ │ ├── left-top-right.gif
│ │ │ │ │ │ ├── line2.jpg
│ │ │ │ │ │ ├── linkspic3.gif
│ │ │ │ │ │ ├── linkspic6.gif
│ │ │ │ │ │ ├── lm.gif
│ │ │ │ │ │ ├── lminfo.gif
│ │ │ │ │ │ ├── login-buttom-bg.gif
│ │ │ │ │ │ ├── login-content-bg.gif
│ │ │ │ │ │ ├── login-top-bg.gif
│ │ │ │ │ │ ├── login-wel.gif
│ │ │ │ │ │ ├── login_bg.jpg
│ │ │ │ │ │ ├── logo.gif
│ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ ├── luck.gif
│ │ │ │ │ │ ├── mail_leftbg.gif
│ │ │ │ │ │ ├── mail_rightbg.gif
│ │ │ │ │ │ ├── menu_bg.gif
│ │ │ │ │ │ ├── menu_bg1.gif
│ │ │ │ │ │ ├── menu_bg2.gif
│ │ │ │ │ │ ├── menu_bgs.gif
│ │ │ │ │ │ ├── menu_topimg.gif
│ │ │ │ │ │ ├── menu_topline.gif
│ │ │ │ │ │ ├── mime.gif
│ │ │ │ │ │ ├── nav-right-bg.gif
│ │ │ │ │ │ ├── news-title-bg.gif
│ │ │ │ │ │ ├── ok.gif
│ │ │ │ │ │ ├── out.gif
│ │ │ │ │ │ ├── password.gif
│ │ │ │ │ │ ├── pic1.gif
│ │ │ │ │ │ ├── pic10.gif
│ │ │ │ │ │ ├── pic11.gif
│ │ │ │ │ │ ├── pic12.gif
│ │ │ │ │ │ ├── pic13.gif
│ │ │ │ │ │ ├── pic14.gif
│ │ │ │ │ │ ├── pic15.gif
│ │ │ │ │ │ ├── pic16.gif
│ │ │ │ │ │ ├── pic17.gif
│ │ │ │ │ │ ├── pic18.gif
│ │ │ │ │ │ ├── pic19.gif
│ │ │ │ │ │ ├── pic21.gif
│ │ │ │ │ │ ├── pic22.gif
│ │ │ │ │ │ ├── pic23.gif
│ │ │ │ │ │ ├── pic24.gif
│ │ │ │ │ │ ├── pic25.gif
│ │ │ │ │ │ ├── pic26.gif
│ │ │ │ │ │ ├── pic5.gif
│ │ │ │ │ │ ├── pic6.gif
│ │ │ │ │ │ ├── pic7.gif
│ │ │ │ │ │ ├── pic8.gif
│ │ │ │ │ │ ├── pic9.gif
│ │ │ │ │ │ ├── report2_(add).gif
│ │ │ │ │ │ ├── report2_(delete).gif
│ │ │ │ │ │ ├── right_smbg.jpg
│ │ │ │ │ │ ├── servicezhgb2312.gif
│ │ │ │ │ │ ├── set.gif
│ │ │ │ │ │ ├── set2.gif
│ │ │ │ │ │ ├── sitebackup.gif
│ │ │ │ │ │ ├── skin.css
│ │ │ │ │ │ ├── smallbg.jpg
│ │ │ │ │ │ ├── st.gif
│ │ │ │ │ │ ├── st.png
│ │ │ │ │ │ ├── stop.gif
│ │ │ │ │ │ ├── str.gif
│ │ │ │ │ │ ├── t2bg1.gif
│ │ │ │ │ │ ├── t2bg2.gif
│ │ │ │ │ │ ├── t2bg4.gif
│ │ │ │ │ │ ├── t2bg5.gif
│ │ │ │ │ │ ├── title.gif
│ │ │ │ │ │ ├── tj.jpg
│ │ │ │ │ │ ├── to.gif
│ │ │ │ │ │ ├── tool-down-pic.gif
│ │ │ │ │ │ ├── top-right.gif
│ │ │ │ │ │ ├── top_bt.jpg
│ │ │ │ │ │ ├── ts.gif
│ │ │ │ │ │ ├── user-info.gif
│ │ │ │ │ │ ├── usercontrol.gif
│ │ │ │ │ │ ├── vie.gif
│ │ │ │ │ │ ├── yc.gif
│ │ │ │ │ │ └── yx.gif
│ │ │ │ │ ├── mobile_main.css
│ │ │ │ │ └── skin.css
│ │ │ │ ├── displaytag
│ │ │ │ │ ├── alternative.css
│ │ │ │ │ └── displaytag.css
│ │ │ │ ├── images
│ │ │ │ │ ├── !.gif
│ │ │ │ │ ├── DefaultDocs.gif
│ │ │ │ │ ├── Login_but.gif
│ │ │ │ │ ├── OK.jpg
│ │ │ │ │ ├── Redirects.gif
│ │ │ │ │ ├── Submit_bg.gif
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── X.gif
│ │ │ │ │ ├── ad.gif
│ │ │ │ │ ├── add.gif
│ │ │ │ │ ├── arrow_bottom.gif
│ │ │ │ │ ├── arrow_left.gif
│ │ │ │ │ ├── arrow_right.gif
│ │ │ │ │ ├── arrow_top.gif
│ │ │ │ │ ├── b1.jpg
│ │ │ │ │ ├── back.gif
│ │ │ │ │ ├── bannerbg.jpg
│ │ │ │ │ ├── bg.gif
│ │ │ │ │ ├── bigsize.jpg
│ │ │ │ │ ├── bootnbg.jpg
│ │ │ │ │ ├── bullet.gif
│ │ │ │ │ ├── buttom-copy-bg.gif
│ │ │ │ │ ├── buttom-left.gif
│ │ │ │ │ ├── buttom-right.gif
│ │ │ │ │ ├── buttom_bgs.gif
│ │ │ │ │ ├── buttom_left2.gif
│ │ │ │ │ ├── buttom_right2.gif
│ │ │ │ │ ├── card.jpg
│ │ │ │ │ ├── check-out_.gif
│ │ │ │ │ ├── close.gif
│ │ │ │ │ ├── close1.gif
│ │ │ │ │ ├── close2.gif
│ │ │ │ │ ├── content-bg-line.gif
│ │ │ │ │ ├── content-bg.gif
│ │ │ │ │ ├── database_import_.gif
│ │ │ │ │ ├── defind.gif
│ │ │ │ │ ├── del.jpg
│ │ │ │ │ ├── delete.gif
│ │ │ │ │ ├── delete.png
│ │ │ │ │ ├── delete5.png
│ │ │ │ │ ├── delete_6.gif
│ │ │ │ │ ├── door.png
│ │ │ │ │ ├── dtree
│ │ │ │ │ │ ├── base.gif
│ │ │ │ │ │ ├── empty.gif
│ │ │ │ │ │ ├── folder.gif
│ │ │ │ │ │ ├── foldericon.gif
│ │ │ │ │ │ ├── folderopen.gif
│ │ │ │ │ │ ├── join.gif
│ │ │ │ │ │ ├── joinbottom.gif
│ │ │ │ │ │ ├── line.gif
│ │ │ │ │ │ ├── minus.gif
│ │ │ │ │ │ ├── minusbottom.gif
│ │ │ │ │ │ ├── nolines_minus.gif
│ │ │ │ │ │ ├── nolines_plus.gif
│ │ │ │ │ │ ├── page.gif
│ │ │ │ │ │ ├── plus.gif
│ │ │ │ │ │ └── plusbottom.gif
│ │ │ │ │ ├── edit.gif
│ │ │ │ │ ├── edit5.png
│ │ │ │ │ ├── ershou_1.gif
│ │ │ │ │ ├── ershou_2.gif
│ │ │ │ │ ├── format.gif
│ │ │ │ │ ├── fox.css
│ │ │ │ │ ├── g.gif
│ │ │ │ │ ├── gw.gif
│ │ │ │ │ ├── gw2.gif
│ │ │ │ │ ├── houtai_loading.gif
│ │ │ │ │ ├── i-dhcd(1).gif
│ │ │ │ │ ├── i-dhcd.gif
│ │ │ │ │ ├── i-dhcd1.gif
│ │ │ │ │ ├── i-rightbg.gif
│ │ │ │ │ ├── i-rightbg2.gif
│ │ │ │ │ ├── i-rightbg2.png
│ │ │ │ │ ├── icon-demo.gif
│ │ │ │ │ ├── icon-login-seaver.gif
│ │ │ │ │ ├── icon-mail2.gif
│ │ │ │ │ ├── icon-phone.gif
│ │ │ │ │ ├── icon2_004.png
│ │ │ │ │ ├── icon2_089.png
│ │ │ │ │ ├── icon2_090.png
│ │ │ │ │ ├── image_(add)6.gif
│ │ │ │ │ ├── image_1.gif
│ │ │ │ │ ├── imagedelete.gif
│ │ │ │ │ ├── imageedit.gif
│ │ │ │ │ ├── images_dbsy.jpg
│ │ │ │ │ ├── images_dbsy1.jpg
│ │ │ │ │ ├── ipsecurity.gif
│ │ │ │ │ ├── key.png
│ │ │ │ │ ├── l1b3.gif
│ │ │ │ │ ├── l1b4.gif
│ │ │ │ │ ├── l1b5.gif
│ │ │ │ │ ├── left-bg.gif
│ │ │ │ │ ├── left-top-right.gif
│ │ │ │ │ ├── leftbg.gif
│ │ │ │ │ ├── leftbg1.gif
│ │ │ │ │ ├── leftbg_right.gif
│ │ │ │ │ ├── line-1.jpg
│ │ │ │ │ ├── line-2.gif
│ │ │ │ │ ├── line-2.jpg
│ │ │ │ │ ├── line-22.png
│ │ │ │ │ ├── line2.jpg
│ │ │ │ │ ├── linkspic3.gif
│ │ │ │ │ ├── linkspic6.gif
│ │ │ │ │ ├── lm.gif
│ │ │ │ │ ├── lminfo.gif
│ │ │ │ │ ├── loading10.gif
│ │ │ │ │ ├── login-buttom-bg.gif
│ │ │ │ │ ├── login-content-bg.gif
│ │ │ │ │ ├── login-top-bg.gif
│ │ │ │ │ ├── login-wel.gif
│ │ │ │ │ ├── login_bg.jpg
│ │ │ │ │ ├── logo.gif
│ │ │ │ │ ├── logo.png
│ │ │ │ │ ├── luck.gif
│ │ │ │ │ ├── mail_leftbg.gif
│ │ │ │ │ ├── mail_rightbg.gif
│ │ │ │ │ ├── menu_bg.gif
│ │ │ │ │ ├── menu_bg1.gif
│ │ │ │ │ ├── menu_bg2.gif
│ │ │ │ │ ├── menu_bgs.gif
│ │ │ │ │ ├── menu_topimg.gif
│ │ │ │ │ ├── menu_topline.gif
│ │ │ │ │ ├── mime.gif
│ │ │ │ │ ├── nav-right-bg.gif
│ │ │ │ │ ├── news-title-bg.gif
│ │ │ │ │ ├── ok.gif
│ │ │ │ │ ├── out.gif
│ │ │ │ │ ├── password.gif
│ │ │ │ │ ├── pencil.png
│ │ │ │ │ ├── pic1.gif
│ │ │ │ │ ├── pic10.gif
│ │ │ │ │ ├── pic11.gif
│ │ │ │ │ ├── pic12.gif
│ │ │ │ │ ├── pic13.gif
│ │ │ │ │ ├── pic14.gif
│ │ │ │ │ ├── pic15.gif
│ │ │ │ │ ├── pic16.gif
│ │ │ │ │ ├── pic17.gif
│ │ │ │ │ ├── pic18.gif
│ │ │ │ │ ├── pic19.gif
│ │ │ │ │ ├── pic21.gif
│ │ │ │ │ ├── pic22.gif
│ │ │ │ │ ├── pic23.gif
│ │ │ │ │ ├── pic24.gif
│ │ │ │ │ ├── pic25.gif
│ │ │ │ │ ├── pic26.gif
│ │ │ │ │ ├── pic5.gif
│ │ │ │ │ ├── pic6.gif
│ │ │ │ │ ├── pic7.gif
│ │ │ │ │ ├── pic8.gif
│ │ │ │ │ ├── pic9.gif
│ │ │ │ │ ├── report2_(add).gif
│ │ │ │ │ ├── report2_(delete).gif
│ │ │ │ │ ├── right_smbg.jpg
│ │ │ │ │ ├── servicezhgb2312.gif
│ │ │ │ │ ├── set.gif
│ │ │ │ │ ├── set2.gif
│ │ │ │ │ ├── show.png
│ │ │ │ │ ├── sitebackup.gif
│ │ │ │ │ ├── skin.css
│ │ │ │ │ ├── smallbg.jpg
│ │ │ │ │ ├── st.gif
│ │ │ │ │ ├── st.png
│ │ │ │ │ ├── stop.gif
│ │ │ │ │ ├── str.gif
│ │ │ │ │ ├── t2bg1.gif
│ │ │ │ │ ├── t2bg2.gif
│ │ │ │ │ ├── t2bg4.gif
│ │ │ │ │ ├── t2bg5.gif
│ │ │ │ │ ├── tabs-sprite.gif
│ │ │ │ │ ├── tag.png
│ │ │ │ │ ├── title.gif
│ │ │ │ │ ├── tj.jpg
│ │ │ │ │ ├── to.gif
│ │ │ │ │ ├── tool-down-pic.gif
│ │ │ │ │ ├── top-right.gif
│ │ │ │ │ ├── top_bt.jpg
│ │ │ │ │ ├── topbg1.gif
│ │ │ │ │ ├── ts.gif
│ │ │ │ │ ├── user-info.gif
│ │ │ │ │ ├── usercontrol.gif
│ │ │ │ │ ├── vie.gif
│ │ │ │ │ ├── wait1.gif
│ │ │ │ │ ├── yc.gif
│ │ │ │ │ └── yx.gif
│ │ │ │ └── js
│ │ │ │ ├── ajaxfileupload.js
│ │ │ │ ├── common.js
│ │ │ │ ├── dtree.js
│ │ │ │ ├── dtree2.js
│ │ │ │ ├── dtree3.js
│ │ │ │ ├── jquery-1.7.1.js
│ │ │ │ ├── jquery.bgiframe.min.js
│ │ │ │ ├── moo.fx.js
│ │ │ │ ├── moo.fx.pack.js
│ │ │ │ └── prototype.lite.js
│ │ │ ├── bootstrap.css
│ │ │ ├── check.js
│ │ │ ├── highcharts.js
│ │ │ ├── jquery-1.8.3.min.js
│ │ │ ├── jquery.jqprint-0.3.js
│ │ │ ├── mine
│ │ │ │ ├── five
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── pic01_20140320.jpg
│ │ │ │ │ │ ├── tp01_20140320.png
│ │ │ │ │ │ ├── tp02_20140320.png
│ │ │ │ │ │ ├── tp03_20140320.png
│ │ │ │ │ │ ├── tp04_20140320.png
│ │ │ │ │ │ ├── tp05_20140320.png
│ │ │ │ │ │ ├── tp06_20140320.png
│ │ │ │ │ │ └── tp07_20140320.png
│ │ │ │ │ ├── index
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── admin.css
│ │ │ │ │ │ │ ├── animate.min.css
│ │ │ │ │ │ │ ├── animation.css
│ │ │ │ │ │ │ ├── houtai.css
│ │ │ │ │ │ │ ├── public.css
│ │ │ │ │ │ │ ├── smartMenu.css
│ │ │ │ │ │ │ └── swiper.3.1.7.css
│ │ │ │ │ │ ├── image
│ │ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ │ ├── ad-ara.jpg
│ │ │ │ │ │ │ ├── l-bg.png
│ │ │ │ │ │ │ ├── m-logo.png
│ │ │ │ │ │ │ ├── min_arrow.png
│ │ │ │ │ │ │ ├── min_bg.png
│ │ │ │ │ │ │ └── min_logo.png
│ │ │ │ │ │ └── js
│ │ │ │ │ │ ├── contabs.js
│ │ │ │ │ │ ├── jquery-smartMenu-min.js
│ │ │ │ │ │ ├── jquery.cookie.js
│ │ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ │ ├── jquery.nicescroll.min.js
│ │ │ │ │ │ ├── maintabs.js
│ │ │ │ │ │ ├── swiper.3.1.7.jquery.min.js
│ │ │ │ │ │ └── swiper.animate1.0.2.min.js
│ │ │ │ │ └── mine.css
│ │ │ │ ├── four
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── H-ui.admin.css
│ │ │ │ │ │ ├── H-ui.css
│ │ │ │ │ │ ├── H-ui.login.css
│ │ │ │ │ │ ├── dropzone.css
│ │ │ │ │ │ └── lightbox.css
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ │ ├── font-awesome-ie7.css
│ │ │ │ │ │ ├── font-awesome-ie7.min.css
│ │ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ │ ├── font-awesome.min.css
│ │ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ │ └── fontawesome-webfont.woff
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── acrossTab-bg.png
│ │ │ │ │ │ ├── acrossTab-close.png
│ │ │ │ │ │ ├── acrossTab.png
│ │ │ │ │ │ ├── admin-login-bg.jpg
│ │ │ │ │ │ ├── admin-loginform-bg.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── hamburger-retina.gif
│ │ │ │ │ │ ├── hamburger.gif
│ │ │ │ │ │ ├── icon-add.png
│ │ │ │ │ │ ├── icon-pass.png
│ │ │ │ │ │ ├── icon-user.png
│ │ │ │ │ │ ├── icon_arrow.png
│ │ │ │ │ │ ├── icon_error_s.png
│ │ │ │ │ │ ├── icon_jt2.png
│ │ │ │ │ │ ├── icon_right_s.png
│ │ │ │ │ │ ├── icon_warning_s.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── loading_072.gif
│ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ ├── next.png
│ │ │ │ │ │ ├── prev.png
│ │ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ │ ├── sort_both.png
│ │ │ │ │ │ ├── sort_desc.png
│ │ │ │ │ │ ├── totop.png
│ │ │ │ │ │ └── user.png
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── DD_belatedPNG_0.0.8a-min.js
│ │ │ │ │ │ ├── H-ui.admin.js
│ │ │ │ │ │ ├── H-ui.js
│ │ │ │ │ │ ├── PIE_IE678.js
│ │ │ │ │ │ ├── Validform_v5.3.2_min.js
│ │ │ │ │ │ ├── de_DE.txt
│ │ │ │ │ │ ├── dropzone.min.js
│ │ │ │ │ │ ├── html5.js
│ │ │ │ │ │ ├── jquery.SuperSlide.2.1.1.js
│ │ │ │ │ │ ├── jquery.cookie.js
│ │ │ │ │ │ ├── jquery.dataTables.min.js
│ │ │ │ │ │ ├── jquery.min.1.8.1.js
│ │ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ │ ├── pagenav.cn.js
│ │ │ │ │ │ ├── passwordStrength-min.js
│ │ │ │ │ │ ├── preview.js
│ │ │ │ │ │ └── respond.min.js
│ │ │ │ │ ├── layer
│ │ │ │ │ │ ├── extend
│ │ │ │ │ │ │ └── layer.ext.js
│ │ │ │ │ │ ├── layer.min.js
│ │ │ │ │ │ └── skin
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── icon_ext.png
│ │ │ │ │ │ │ ├── textbg.png
│ │ │ │ │ │ │ ├── xubox_ico0.png
│ │ │ │ │ │ │ ├── xubox_loading0.gif
│ │ │ │ │ │ │ ├── xubox_loading1.gif
│ │ │ │ │ │ │ ├── xubox_loading2.gif
│ │ │ │ │ │ │ ├── xubox_loading3.gif
│ │ │ │ │ │ │ └── xubox_title0.png
│ │ │ │ │ │ ├── layer.css
│ │ │ │ │ │ └── layer.ext.css
│ │ │ │ │ ├── mine.css
│ │ │ │ │ └── temp
│ │ │ │ ├── one
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ │ ├── checkbox3.min.css
│ │ │ │ │ │ ├── custom-styles.css
│ │ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ │ └── select2.min.css
│ │ │ │ │ ├── font-awesome
│ │ │ │ │ │ └── fonts
│ │ │ │ │ │ ├── fontawesome-webfontba72.eot
│ │ │ │ │ │ ├── fontawesome-webfontba72.svg
│ │ │ │ │ │ ├── fontawesome-webfontba72.ttf
│ │ │ │ │ │ ├── fontawesome-webfontba72.woff
│ │ │ │ │ │ └── fontawesome-webfontd41d.eot
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ │ └── glyphicons-halflings-regulard41d.eot
│ │ │ │ │ ├── img
│ │ │ │ │ │ └── bg-img.jpg
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── Lightweight-Chart
│ │ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ │ ├── chart.js
│ │ │ │ │ │ │ ├── cssCharts.css
│ │ │ │ │ │ │ ├── index - Copy.html
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ ├── jquery.chart.js
│ │ │ │ │ │ │ └── jquery.chart.min.js
│ │ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ │ ├── chart-data.js
│ │ │ │ │ │ ├── chart.min.js
│ │ │ │ │ │ ├── chartjs.js
│ │ │ │ │ │ ├── custom-scripts.js
│ │ │ │ │ │ ├── custom.js
│ │ │ │ │ │ ├── dataTables
│ │ │ │ │ │ │ ├── dataTables.bootstrap.css
│ │ │ │ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ │ │ │ └── jquery.dataTables.js
│ │ │ │ │ │ ├── easypiechart-data.js
│ │ │ │ │ │ ├── easypiechart.js
│ │ │ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ │ │ ├── jquery.metisMenu.js
│ │ │ │ │ │ ├── morris
│ │ │ │ │ │ │ ├── morris-0.4.3.min.css
│ │ │ │ │ │ │ ├── morris.js
│ │ │ │ │ │ │ └── raphael-2.1.0.min.js
│ │ │ │ │ │ └── select2.full.min.js
│ │ │ │ │ ├── login
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── style.css
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── banner.jpg
│ │ │ │ │ │ └── js
│ │ │ │ │ └── mine.css
│ │ │ │ ├── six
│ │ │ │ │ ├── 1.jpg
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ ├── login.css
│ │ │ │ │ │ ├── public.css
│ │ │ │ │ │ └── reset.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── banner.jpg
│ │ │ │ │ │ ├── bg.jpg
│ │ │ │ │ │ ├── home.png
│ │ │ │ │ │ ├── icon.jpg
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ ├── img.jpg
│ │ │ │ │ │ ├── thumb.jpg
│ │ │ │ │ │ └── verify.PNG
│ │ │ │ │ ├── javaaa.png
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ │ ├── laydate
│ │ │ │ │ │ │ └── skins
│ │ │ │ │ │ │ ├── dahong
│ │ │ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ │ └── molv
│ │ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ ├── laydate.js
│ │ │ │ │ │ ├── need
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ └── skins
│ │ │ │ │ │ ├── dahong
│ │ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ └── molv
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── mine.css
│ │ │ │ ├── three
│ │ │ │ │ ├── index
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── apply.css
│ │ │ │ │ │ │ ├── apply_examine.css
│ │ │ │ │ │ │ ├── demo.css
│ │ │ │ │ │ │ ├── detail.css
│ │ │ │ │ │ │ ├── index.css
│ │ │ │ │ │ │ ├── replace_apply.css
│ │ │ │ │ │ │ └── themes
│ │ │ │ │ │ │ ├── black
│ │ │ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ │ │ ├── filebox.css
│ │ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ │ │ ├── numberbox.css
│ │ │ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ │ │ ├── textbox.css
│ │ │ │ │ │ │ │ ├── tooltip.css
│ │ │ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ │ │ └── window.css
│ │ │ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ │ │ ├── filebox.css
│ │ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ │ │ ├── numberbox.css
│ │ │ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ │ │ ├── textbox.css
│ │ │ │ │ │ │ │ ├── tooltip.css
│ │ │ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ │ │ └── window.css
│ │ │ │ │ │ │ ├── color.css
│ │ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ │ │ ├── filebox.css
│ │ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ │ │ ├── numberbox.css
│ │ │ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ │ │ ├── textbox.css
│ │ │ │ │ │ │ │ ├── tooltip.css
│ │ │ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ │ │ └── window.css
│ │ │ │ │ │ │ ├── gray
│ │ │ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ │ │ ├── filebox.css
│ │ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ │ │ ├── numberbox.css
│ │ │ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ │ │ ├── textbox.css
│ │ │ │ │ │ │ │ ├── tooltip.css
│ │ │ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ │ │ └── window.css
│ │ │ │ │ │ │ ├── icon.css
│ │ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ │ │ ├── back.png
│ │ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ │ ├── cancel.png
│ │ │ │ │ │ │ │ ├── clear.png
│ │ │ │ │ │ │ │ ├── cut.png
│ │ │ │ │ │ │ │ ├── edit_add.png
│ │ │ │ │ │ │ │ ├── edit_remove.png
│ │ │ │ │ │ │ │ ├── filesave.png
│ │ │ │ │ │ │ │ ├── filter.png
│ │ │ │ │ │ │ │ ├── help.png
│ │ │ │ │ │ │ │ ├── large_chart.png
│ │ │ │ │ │ │ │ ├── large_clipart.png
│ │ │ │ │ │ │ │ ├── large_picture.png
│ │ │ │ │ │ │ │ ├── large_shapes.png
│ │ │ │ │ │ │ │ ├── large_smartart.png
│ │ │ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ │ │ ├── man.png
│ │ │ │ │ │ │ │ ├── mini_add.png
│ │ │ │ │ │ │ │ ├── mini_edit.png
│ │ │ │ │ │ │ │ ├── mini_refresh.png
│ │ │ │ │ │ │ │ ├── no.png
│ │ │ │ │ │ │ │ ├── ok.png
│ │ │ │ │ │ │ │ ├── pencil.png
│ │ │ │ │ │ │ │ ├── print.png
│ │ │ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ │ │ ├── reload.png
│ │ │ │ │ │ │ │ ├── search.png
│ │ │ │ │ │ │ │ ├── sum.png
│ │ │ │ │ │ │ │ ├── tip.png
│ │ │ │ │ │ │ │ └── undo.png
│ │ │ │ │ │ │ └── metro
│ │ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ │ ├── filebox.css
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ │ ├── numberbox.css
│ │ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ │ ├── textbox.css
│ │ │ │ │ │ │ ├── tooltip.css
│ │ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ │ └── window.css
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ ├── t1.png
│ │ │ │ │ │ │ ├── t2.png
│ │ │ │ │ │ │ ├── t3.png
│ │ │ │ │ │ │ └── t4.png
│ │ │ │ │ │ └── script
│ │ │ │ │ │ ├── easyloader.js
│ │ │ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ │ │ ├── jquery.easyui.min.js
│ │ │ │ │ │ └── jquery.min.js
│ │ │ │ │ ├── login
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── style.css
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── asd2345634.jpg
│ │ │ │ │ │ ├── login_bgx.gif
│ │ │ │ │ │ ├── login_m_bg.png
│ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ └── site_bg.png
│ │ │ │ │ └── mine.css
│ │ │ │ └── two
│ │ │ │ ├── css
│ │ │ │ │ └── admin.css
│ │ │ │ ├── images
│ │ │ │ │ ├── admin.css
│ │ │ │ │ ├── admin_p.gif
│ │ │ │ │ ├── bt_login.gif
│ │ │ │ │ ├── header_bg.jpg
│ │ │ │ │ ├── header_left.jpg
│ │ │ │ │ ├── header_right.jpg
│ │ │ │ │ ├── login_1.jpg
│ │ │ │ │ ├── login_2.jpg
│ │ │ │ │ ├── login_3.jpg
│ │ │ │ │ ├── login_4.jpg
│ │ │ │ │ ├── login_5.jpg
│ │ │ │ │ ├── login_6.gif
│ │ │ │ │ ├── menu_bg.jpg
│ │ │ │ │ ├── menu_bt.jpg
│ │ │ │ │ ├── menu_icon.gif
│ │ │ │ │ ├── shadow_bg.jpg
│ │ │ │ │ ├── title_bg1.jpg
│ │ │ │ │ └── title_bg2.jpg
│ │ │ │ └── mine.css
│ │ │ ├── plugin
│ │ │ │ └── ckeditor
│ │ │ │ ├── CHANGES.md
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── adapters
│ │ │ │ │ └── jquery.js
│ │ │ │ ├── build-config.js
│ │ │ │ ├── ckeditor.js
│ │ │ │ ├── config.js
│ │ │ │ ├── contents.css
│ │ │ │ ├── lang
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── bn.js
│ │ │ │ │ ├── bs.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en-au.js
│ │ │ │ │ ├── en-ca.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fo.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── gu.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hi.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── is.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── ka.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── mk.js
│ │ │ │ │ ├── mn.js
│ │ │ │ │ ├── ms.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ │ ├── plugins
│ │ │ │ │ ├── a11yhelp
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── a11yhelp.js
│ │ │ │ │ │ └── lang
│ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── gu.js
│ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ ├── mn.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ ├── about
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── about.js
│ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ ├── clipboard
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── paste.js
│ │ │ │ │ ├── colordialog
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── colordialog.js
│ │ │ │ │ ├── dialog
│ │ │ │ │ │ └── dialogDefinition.js
│ │ │ │ │ ├── div
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── div.js
│ │ │ │ │ ├── fakeobjects
│ │ │ │ │ │ └── images
│ │ │ │ │ │ └── spacer.gif
│ │ │ │ │ ├── find
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── find.js
│ │ │ │ │ ├── flash
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ └── flash.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ └── placeholder.png
│ │ │ │ │ ├── forms
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ ├── button.js
│ │ │ │ │ │ │ ├── checkbox.js
│ │ │ │ │ │ │ ├── form.js
│ │ │ │ │ │ │ ├── hiddenfield.js
│ │ │ │ │ │ │ ├── radio.js
│ │ │ │ │ │ │ ├── select.js
│ │ │ │ │ │ │ ├── textarea.js
│ │ │ │ │ │ │ └── textfield.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ └── hiddenfield.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ ├── iframe
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ └── iframe.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ └── placeholder.png
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ └── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ └── noimage.png
│ │ │ │ │ ├── link
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ ├── anchor.js
│ │ │ │ │ │ │ └── link.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── anchor.png
│ │ │ │ │ │ └── hidpi
│ │ │ │ │ │ └── anchor.png
│ │ │ │ │ ├── liststyle
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── liststyle.js
│ │ │ │ │ ├── magicline
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ └── icon.png
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── pagebreak
│ │ │ │ │ │ └── images
│ │ │ │ │ │ └── pagebreak.gif
│ │ │ │ │ ├── pastefromword
│ │ │ │ │ │ └── filter
│ │ │ │ │ │ └── default.js
│ │ │ │ │ ├── preview
│ │ │ │ │ │ └── preview.html
│ │ │ │ │ ├── scayt
│ │ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── options.js
│ │ │ │ │ │ └── toolbar.css
│ │ │ │ │ ├── showblocks
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── block_address.png
│ │ │ │ │ │ ├── block_blockquote.png
│ │ │ │ │ │ ├── block_div.png
│ │ │ │ │ │ ├── block_h1.png
│ │ │ │ │ │ ├── block_h2.png
│ │ │ │ │ │ ├── block_h3.png
│ │ │ │ │ │ ├── block_h4.png
│ │ │ │ │ │ ├── block_h5.png
│ │ │ │ │ │ ├── block_h6.png
│ │ │ │ │ │ ├── block_p.png
│ │ │ │ │ │ └── block_pre.png
│ │ │ │ │ ├── smiley
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ └── smiley.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── angel_smile.gif
│ │ │ │ │ │ ├── angry_smile.gif
│ │ │ │ │ │ ├── broken_heart.gif
│ │ │ │ │ │ ├── confused_smile.gif
│ │ │ │ │ │ ├── cry_smile.gif
│ │ │ │ │ │ ├── devil_smile.gif
│ │ │ │ │ │ ├── embaressed_smile.gif
│ │ │ │ │ │ ├── embarrassed_smile.gif
│ │ │ │ │ │ ├── envelope.gif
│ │ │ │ │ │ ├── heart.gif
│ │ │ │ │ │ ├── kiss.gif
│ │ │ │ │ │ ├── lightbulb.gif
│ │ │ │ │ │ ├── omg_smile.gif
│ │ │ │ │ │ ├── regular_smile.gif
│ │ │ │ │ │ ├── sad_smile.gif
│ │ │ │ │ │ ├── shades_smile.gif
│ │ │ │ │ │ ├── teeth_smile.gif
│ │ │ │ │ │ ├── thumbs_down.gif
│ │ │ │ │ │ ├── thumbs_up.gif
│ │ │ │ │ │ ├── tongue_smile.gif
│ │ │ │ │ │ ├── tounge_smile.gif
│ │ │ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ │ │ └── wink_smile.gif
│ │ │ │ │ ├── specialchar
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── lang
│ │ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ │ └── specialchar.js
│ │ │ │ │ ├── table
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── table.js
│ │ │ │ │ ├── tabletools
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── tableCell.js
│ │ │ │ │ ├── templates
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ ├── templates.css
│ │ │ │ │ │ │ └── templates.js
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ ├── default.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── template1.gif
│ │ │ │ │ │ ├── template2.gif
│ │ │ │ │ │ └── template3.gif
│ │ │ │ │ └── wsc
│ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── dialogs
│ │ │ │ │ ├── ciframe.html
│ │ │ │ │ ├── tmp.html
│ │ │ │ │ ├── tmpFrameset.html
│ │ │ │ │ ├── wsc.css
│ │ │ │ │ ├── wsc.js
│ │ │ │ │ └── wsc_ie.js
│ │ │ │ ├── samples
│ │ │ │ │ ├── ajax.html
│ │ │ │ │ ├── api.html
│ │ │ │ │ ├── appendto.html
│ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── inlineall
│ │ │ │ │ │ │ └── logo.png
│ │ │ │ │ │ ├── outputxhtml
│ │ │ │ │ │ │ └── outputxhtml.css
│ │ │ │ │ │ ├── posteddata.php
│ │ │ │ │ │ ├── sample.css
│ │ │ │ │ │ ├── sample.jpg
│ │ │ │ │ │ └── uilanguages
│ │ │ │ │ │ └── languages.js
│ │ │ │ │ ├── datafiltering.html
│ │ │ │ │ ├── divreplace.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── inlineall.html
│ │ │ │ │ ├── inlinebycode.html
│ │ │ │ │ ├── inlinetextarea.html
│ │ │ │ │ ├── jquery.html
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ ├── dialog
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ │ └── my_dialog.js
│ │ │ │ │ │ │ └── dialog.html
│ │ │ │ │ │ ├── enterkey
│ │ │ │ │ │ │ └── enterkey.html
│ │ │ │ │ │ ├── htmlwriter
│ │ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ │ └── outputforflash
│ │ │ │ │ │ │ │ ├── outputforflash.fla
│ │ │ │ │ │ │ │ ├── outputforflash.swf
│ │ │ │ │ │ │ │ └── swfobject.js
│ │ │ │ │ │ │ ├── outputforflash.html
│ │ │ │ │ │ │ └── outputhtml.html
│ │ │ │ │ │ ├── magicline
│ │ │ │ │ │ │ └── magicline.html
│ │ │ │ │ │ ├── toolbar
│ │ │ │ │ │ │ └── toolbar.html
│ │ │ │ │ │ └── wysiwygarea
│ │ │ │ │ │ └── fullpage.html
│ │ │ │ │ ├── readonly.html
│ │ │ │ │ ├── replacebyclass.html
│ │ │ │ │ ├── replacebycode.html
│ │ │ │ │ ├── sample.css
│ │ │ │ │ ├── sample.js
│ │ │ │ │ ├── sample_posteddata.php
│ │ │ │ │ ├── tabindex.html
│ │ │ │ │ ├── uicolor.html
│ │ │ │ │ ├── uilanguages.html
│ │ │ │ │ └── xhtmlstyle.html
│ │ │ │ ├── skins
│ │ │ │ │ └── moono
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── dialog_ie.css
│ │ │ │ │ ├── dialog_ie7.css
│ │ │ │ │ ├── dialog_ie8.css
│ │ │ │ │ ├── dialog_iequirks.css
│ │ │ │ │ ├── dialog_opera.css
│ │ │ │ │ ├── editor.css
│ │ │ │ │ ├── editor_gecko.css
│ │ │ │ │ ├── editor_ie.css
│ │ │ │ │ ├── editor_ie7.css
│ │ │ │ │ ├── editor_ie8.css
│ │ │ │ │ ├── editor_iequirks.css
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ │ ├── lock-open.png
│ │ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ │ └── refresh.png
│ │ │ │ │ │ ├── lock-open.png
│ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ └── refresh.png
│ │ │ │ │ └── readme.md
│ │ │ │ └── styles.js
│ │ │ └── sp
│ │ │ ├── font
│ │ │ │ ├── vjs.eot
│ │ │ │ ├── vjs.svg
│ │ │ │ ├── vjs.ttf
│ │ │ │ └── vjs.woff
│ │ │ ├── video-js.css
│ │ │ ├── video-js.min.css
│ │ │ ├── video-js.swf
│ │ │ ├── video.dev.js
│ │ │ └── video.js
│ │ ├── taglibs.jsp
│ │ └── upload
│ ├── conf
│ │ ├── applicationContext.xml
│ │ ├── log4j.xml
│ │ └── spring-mvc-protal.xml
│ ├── src
│ │ ├── displaytag.properties
│ │ ├── mybatis-config.xml
│ │ └── project
│ │ ├── controller
│ │ │ ├── BaseController.java
│ │ │ ├── IndexController.java
│ │ │ ├── MyController.java
│ │ │ ├── PublicController.java
│ │ │ └── admin
│ │ │ ├── AdminController.java
│ │ │ ├── AdminLoginController.java
│ │ │ └── StudentController.java
│ │ ├── dao
│ │ │ ├── AdminDao.java
│ │ │ ├── MyBatiesPublic.java
│ │ │ ├── PublicDao.java
│ │ │ └── StudentDao.java
│ │ ├── interceptor
│ │ │ └── ProtalSessionHandlerInterceptor.java
│ │ ├── model
│ │ │ ├── Admin.java
│ │ │ ├── BaseBean.java
│ │ │ ├── Book2.java
│ │ │ ├── Student.java
│ │ │ └── mapping
│ │ │ ├── AdminMapper.xml
│ │ │ ├── Book2Mapper.xml
│ │ │ ├── PublicMapper.xml
│ │ │ └── StudentMapper.xml
│ │ ├── service
│ │ │ ├── BaseService.java
│ │ │ └── StudentService.java
│ │ ├── support
│ │ │ ├── MessageSourceHelper.java
│ │ │ └── UTF8StringHttpMessageConverter.java
│ │ └── util
│ │ ├── BatchSql.java
│ │ ├── DBHelper.java
│ │ ├── DateConverter.java
│ │ ├── DateUtil.java
│ │ ├── FileUtil.java
│ │ ├── JacksonJsonUtil.java
│ │ ├── PageTool.java
│ │ ├── RandomValidateCode.java
│ │ ├── SpringApplicationContextHolder.java
│ │ ├── StringHelper.java
│ │ ├── Uploader.java
│ │ └── UrlUtil.java
│ └── 数据库创建语句
└── 找例子网_javawebxx_temp3-2022-1-30.zip
210 directories, 1393 files
评论